home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / ubmark / dspawn.c < prev    next >
Text File  |  1996-07-10  |  195b  |  21 lines

  1.  
  2. /********
  3. *    compile to "dspawn"
  4. *    place in /bin directory
  5. ********/
  6.  
  7.  
  8.  
  9. #include <stdio.h>
  10.  
  11.  
  12. main()    {
  13.  
  14.     if (fork() == 0)
  15.         execv("/bin/work.exe", NULL);
  16.     ;
  17.     ;
  18.     return(0);
  19. }
  20.  
  21.